home *** CD-ROM | disk | FTP | other *** search
/ Champak 66 / Vol 66.iso / games / discosue.swf / scripts / DefineButton2_1071 / BUTTONCONDACTION on(release).as
Text File  |  2013-04-24  |  1KB  |  29 lines

  1. on(release){
  2.    m_back1 = _root.beck._currentframe;
  3.    m_back2 = _root.stage._currentframe;
  4.    m_effect1 = _root.effect._currentframe;
  5.    m_effect2 = _root.effect2._currentframe;
  6.    m_body1 = _root.m3._currentframe;
  7.    m_body2 = _root.m4._currentframe;
  8.    m_foot1 = _root.m5._currentframe;
  9.    m_foot2 = _root.m1._currentframe;
  10.    m_hair = _root.m2._currentframe;
  11.    _root.tempString = "";
  12.    var i = 0;
  13.    while(i < String(m_text).length)
  14.    {
  15.       if(String(m_text).charCodeAt(i) == 13)
  16.       {
  17.          _root.tempString += "<br>";
  18.       }
  19.       else
  20.       {
  21.          _root.tempString += String(m_text).substring(i,i + 1);
  22.       }
  23.       i++;
  24.    }
  25.    m_text = _root.tempString;
  26.    _root.loadVariables("http://img.ibravo.com/SueMail/sueMail.asp?m_back1=" + m_back1 + "&m_back2=" + m_back2 + "&m_effect1=" + m_effect1 + "&m_effect2=" + m_effect2 + "&m_body1=" + m_body1 + "&m_body2=" + m_body2 + "&m_foot1=" + m_foot1 + "&m_foot2=" + m_foot2 + "&m_hair=" + m_hair + "&m_from=" + m_from + "&m_fname=" + m_fname + "&m_to=" + m_to + "&m_tname=" + m_tname + "&m_subject=" + m_subject + "&m_text=" + m_text,POST);
  27.    gotoAndPlay(3);
  28. }
  29.